home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJDEV111.ZIP / include / utime.h < prev    next >
C/C++ Source or Header  |  1992-08-24  |  140b  |  10 lines

  1. #include <sys/types.h>
  2.  
  3. struct utimbuf
  4. {
  5.     time_t    actime;
  6.     time_t    modtime;
  7. };
  8.  
  9. extern int    utime(const char *, const struct utimbuf *);
  10.